home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Dec / di9812me / PluginSample / 1 / Common / common.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1998-03-23  |  274 b   |  16 lines

  1. unit common;
  2.  
  3. interface
  4.  
  5. const
  6.     cPLUGIN_DESCRIBE    = 'DescribePlugin';
  7.     cPLUGIN_INIT        = 'InitPlugin';
  8.  
  9. type
  10.     TPluginDescribe     = procedure (var Desc: string); stdcall;
  11.     //TPluginInit         = procedure (); stdcall;
  12.  
  13. implementation
  14.  
  15. end.
  16.